github.com/klauspost/compress/huff0.Decoder.actualTableLog (field)
13 uses
github.com/klauspost/compress/huff0 (current package)
decompress.go#L211: actualTableLog: s.actualTableLog,
decompress.go#L219: actualTableLog uint8
decompress.go#L235: if d.actualTableLog == 8 {
decompress.go#L254: switch d.actualTableLog {
decompress.go#L497: return nil, fmt.Errorf("invalid tablelog: %d", d.actualTableLog)
decompress.go#L509: shift := (8 - d.actualTableLog) & 7
decompress.go#L623: if d.actualTableLog == 8 {
decompress.go#L651: shift := (56 + (8 - d.actualTableLog)) & 63
decompress_amd64.go#L52: use8BitTables := d.actualTableLog <= 8
decompress_amd64.go#L91: peekBits: uint8((64 - d.actualTableLog) & 63), // see: bitReaderShifted.peekBitsFast()
decompress_amd64.go#L121: val := br.peekBitsFast(d.actualTableLog)
decompress_amd64.go#L191: peekBits: uint8((64 - d.actualTableLog) & 63), // see: bitReaderShifted.peekBitsFast()
decompress_amd64.go#L215: v := d.dt.single[br.peekBitsFast(d.actualTableLog)&tlMask]
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |